From: Keir Fraser Date: Thu, 27 Sep 2007 14:22:29 +0000 (+0100) Subject: xend: Fix dummy security_policy_dir. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14937^2~11 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=a0d123d8045fcd2acb911969cb14ee4b2e106b01;p=xen.git xend: Fix dummy security_policy_dir. Changeset 15951:ad339d88639d split policy_dir_prefix into security_dir_prefix and policy_dir_prefix in acm code. I think this needs to be reflected in the dummy module as well (otherwise we blowup when bootloader.py tries to reference security.security_dir_prefix). Fixed in below patch. Signed-off-by: Alex Williamson --- diff --git a/tools/python/xen/util/xsm/dummy/dummy.py b/tools/python/xen/util/xsm/dummy/dummy.py index 04966e4daf..42a41b36c9 100644 --- a/tools/python/xen/util/xsm/dummy/dummy.py +++ b/tools/python/xen/util/xsm/dummy/dummy.py @@ -6,6 +6,7 @@ class XSMError(Exception): def __str__(self): return repr(self.value) +security_dir_prefix = ""; policy_dir_prefix = ""; active_policy = ""; NULL_SSIDREF = 0;